home *** CD-ROM | disk | FTP | other *** search
/ kermit.columbia.edu / kermit.columbia.edu.tar / kermit.columbia.edu / newsgroups / misc.19960425-19960715 / 000360_news@columbia.edu _Wed Jul 3 19:27:43 1996.msg < prev    next >
Internet Message Format  |  1996-07-26  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30]) by watsun.cc.columbia.edu (8.7.5/8.7.3) with ESMTP id TAA00447 for <kermit.misc@watsun.cc.columbia.edu>; Wed, 3 Jul 1996 19:27:42 -0400 (EDT)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.5/8.7.3) id TAA29423 for kermit.misc@watsun; Wed, 3 Jul 1996 19:27:42 -0400 (EDT)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: whose side comm params take precedence?
  8. Date: 3 Jul 1996 23:27:37 GMT
  9. Organization: Columbia University
  10. Lines: 19
  11. Message-ID: <4revl9$snd@apakabar.cc.columbia.edu>
  12. References: <omloh157kk.fsf@tees.cs.ualberta.ca>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <omloh157kk.fsf@tees.cs.ualberta.ca>,
  16. Vladimir Alexiev  <vladimir@cs.ualberta.ca> wrote:
  17. : If two kermits have different communication parameters set, which ones take
  18. : precedence? I think for send/receive the packet size of the receiver takes
  19. : precedence, or is the minimum of the two used?
  20. :
  21. The answer depends on the parameter.  See Table 8-1 on page 168 of "Using
  22. C-Kermit".
  23.  
  24. The maximum packet length is governed by the receiver.  That is, by whatever
  25. SET RECEIVE PACKET-LENGTH you give to the file receiver.  You can give a
  26. SET SEND PACKET-LENGTH command to the sender, but you can only use it to
  27. make the packets smaller, not larger.
  28.  
  29. The sender can, of course, unilaterally decide to send a packet of any
  30. length at all, up to the maximum negotiated length.  And that's what happens
  31. when errors occur.
  32.  
  33. - Frank